stack_wallet/lib/wallets/crypto_currency/intermediate/cryptonote_currency.dart

15 lines
372 B
Dart
Raw Normal View History

import '../../../models/isar/models/blockchain_data/address.dart';
import '../crypto_currency.dart';
abstract class CryptonoteCurrency extends CryptoCurrency {
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
AddressType get defaultAddressType => AddressType.cryptonote;
}