mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-17 01:37:54 +00:00
10 lines
250 B
Dart
10 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});
|
||
|
}
|