mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-05 11:57:41 +00:00
21 lines
500 B
Dart
21 lines
500 B
Dart
import 'dart:typed_data';
|
|
|
|
import 'package:bitcoindart/bitcoindart.dart';
|
|
import 'package:stackwallet/models/isar/models/isar_models.dart';
|
|
import 'package:stackwallet/utilities/enums/derive_path_type_enum.dart';
|
|
|
|
class SigningData {
|
|
SigningData({
|
|
required this.derivePathType,
|
|
required this.utxo,
|
|
this.output,
|
|
this.keyPair,
|
|
this.redeemScript,
|
|
});
|
|
|
|
final DerivePathType derivePathType;
|
|
final UTXO utxo;
|
|
Uint8List? output;
|
|
ECPair? keyPair;
|
|
Uint8List? redeemScript;
|
|
}
|