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

11 lines
269 B
Dart
Raw Normal View History

import 'package:stackwallet/wallets/crypto_currency/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";
}
}