stack_wallet/lib/wallets/crypto_currency/intermediate/cryptonote_currency.dart
2023-11-06 15:37:18 -06:00

10 lines
269 B
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";
}
}