2023-05-26 21:21:16 +00:00
|
|
|
/*
|
|
|
|
* This file is part of Stack Wallet.
|
|
|
|
*
|
|
|
|
* Copyright (c) 2023 Cypher Stack
|
|
|
|
* All Rights Reserved.
|
|
|
|
* The code is distributed under GPLv3 license, see LICENSE file for details.
|
|
|
|
* Generated by Cypher Stack on 2023-05-26
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2023-03-09 18:31:36 +00:00
|
|
|
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;
|
|
|
|
}
|