mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-17 01:37:54 +00:00
14 lines
372 B
Dart
14 lines
372 B
Dart
import '../../../models/isar/models/blockchain_data/address.dart';
|
|
import '../crypto_currency.dart';
|
|
|
|
abstract class CryptonoteCurrency extends CryptoCurrency {
|
|
CryptonoteCurrency(super.network);
|
|
|
|
@override
|
|
String get genesisHash {
|
|
return "not used in stack's cryptonote coins";
|
|
}
|
|
|
|
@override
|
|
AddressType get primaryAddressType => AddressType.cryptonote;
|
|
}
|