stack_wallet/lib/wallets/crypto_currency/intermediate/cryptonote_currency.dart
2024-05-15 15:24:02 -06:00

14 lines
424 B
Dart

import 'package:stackwallet/models/isar/models/blockchain_data/address.dart';
import 'package:stackwallet/wallets/crypto_currency/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;
}