mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-23 12:09:43 +00:00
18 lines
468 B
Dart
18 lines
468 B
Dart
|
import 'package:cw_core/crypto_currency.dart';
|
||
|
import 'package:cw_core/output_info.dart';
|
||
|
import 'package:cw_ethereum/ethereum_transaction_priority.dart';
|
||
|
|
||
|
class EthereumTransactionCredentials {
|
||
|
EthereumTransactionCredentials(
|
||
|
this.outputs, {
|
||
|
required this.priority,
|
||
|
required this.currency,
|
||
|
this.feeRate,
|
||
|
});
|
||
|
|
||
|
final List<OutputInfo> outputs;
|
||
|
final EthereumTransactionPriority? priority;
|
||
|
final int? feeRate;
|
||
|
final CryptoCurrency currency;
|
||
|
}
|