cake_wallet/cw_ethereum/lib/ethereum_transaction_credentials.dart

18 lines
468 B
Dart
Raw Normal View History

2023-06-02 01:02:43 +00:00
import 'package:cw_core/crypto_currency.dart';
2023-03-16 17:24:21 +00:00
import 'package:cw_core/output_info.dart';
import 'package:cw_ethereum/ethereum_transaction_priority.dart';
class EthereumTransactionCredentials {
2023-06-02 01:02:43 +00:00
EthereumTransactionCredentials(
this.outputs, {
required this.priority,
required this.currency,
this.feeRate,
});
2023-03-16 17:24:21 +00:00
final List<OutputInfo> outputs;
final EthereumTransactionPriority? priority;
final int? feeRate;
2023-06-02 01:02:43 +00:00
final CryptoCurrency currency;
2023-03-16 17:24:21 +00:00
}