mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-12-26 13:29:23 +00:00
16 lines
400 B
Dart
16 lines
400 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});
|
|
|
|
String addressToScriptHash({required String address});
|
|
|
|
Uint8List addressToPubkey({required String address});
|
|
|
|
Amount get dustLimit;
|
|
}
|