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

13 lines
334 B
Dart
Raw Normal View History

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