mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-23 12:09:43 +00:00
17 lines
483 B
Dart
17 lines
483 B
Dart
import 'package:cw_core/output_info.dart';
|
|
import 'package:cw_core/transaction_priority.dart';
|
|
import 'package:cw_core/unspent_coin_type.dart';
|
|
|
|
class BitcoinTransactionCredentials {
|
|
BitcoinTransactionCredentials(
|
|
this.outputs, {
|
|
required this.priority,
|
|
this.feeRate,
|
|
this.coinTypeToSpendFrom = UnspentCoinType.any,
|
|
});
|
|
|
|
final List<OutputInfo> outputs;
|
|
final TransactionPriority? priority;
|
|
final int? feeRate;
|
|
final UnspentCoinType coinTypeToSpendFrom;
|
|
}
|