mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-16 17:27:39 +00:00
12 lines
282 B
Dart
12 lines
282 B
Dart
import 'dart:typed_data';
|
|
|
|
import '../../../utilities/amount/amount.dart';
|
|
import '../crypto_currency.dart';
|
|
|
|
abstract class FrostCurrency extends CryptoCurrency {
|
|
FrostCurrency(super.network);
|
|
|
|
String pubKeyToScriptHash({required Uint8List pubKey});
|
|
|
|
Amount get dustLimit;
|
|
}
|