mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-26 21:50:27 +00:00
11 lines
342 B
Dart
11 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;
|
||
|
}
|