mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-26 05:29:57 +00:00
10 lines
342 B
Dart
10 lines
342 B
Dart
import 'package:cw_core/output_info.dart';
|
|
import 'package:cw_ethereum/ethereum_transaction_priority.dart';
|
|
|
|
class EthereumTransactionCredentials {
|
|
EthereumTransactionCredentials(this.outputs, {required this.priority, this.feeRate});
|
|
|
|
final List<OutputInfo> outputs;
|
|
final EthereumTransactionPriority? priority;
|
|
final int? feeRate;
|
|
}
|