stack_wallet/lib/wallets/crypto_currency/intermediate/private_key_currency.dart
2024-01-19 15:38:17 -06:00

9 lines
250 B
Dart

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});
}