stack_wallet/lib/wallets/crypto_currency/intermediate/frost_currency.dart
2024-05-03 09:37:58 -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;
}