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

12 lines
334 B
Dart

import 'dart:typed_data';
import 'package:stackwallet/utilities/amount/amount.dart';
import 'package:stackwallet/wallets/crypto_currency/crypto_currency.dart';
abstract class FrostCurrency extends CryptoCurrency {
FrostCurrency(super.network);
String pubKeyToScriptHash({required Uint8List pubKey});
Amount get dustLimit;
}