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

10 lines
250 B
Dart
Raw Normal View History

2024-01-18 23:47:06 +00:00
import 'dart:typed_data';
import 'package:stackwallet/wallets/crypto_currency/crypto_currency.dart';
abstract class FrostCurrency extends CryptoCurrency {
FrostCurrency(super.network);
String pubKeyToScriptHash({required Uint8List pubKey});
}