/* * 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 * */ 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; @override String toString() { return "SigningData{\n" " derivePathType: $derivePathType,\n" " utxo: $utxo,\n" " output: $output,\n" " keyPair: $keyPair,\n" " redeemScript: $redeemScript,\n" "}"; } }