| 1 | import 'package:cw_core/crypto_currency.dart'; |
| 2 | import 'package:cw_core/output_info.dart'; |
| 3 | import 'package:cw_evm/evm_chain_transaction_priority.dart'; |
| 4 | |
| 5 | class EVMChainTransactionCredentials { |
| 6 | EVMChainTransactionCredentials( |
| 7 | this.outputs, { |
| 8 | required this.priority, |
| 9 | required this.currency, |
| 10 | this.feeRate, |
| 11 | this.useBlinkProtection = true, |
| 12 | }); |
| 13 | |
| 14 | final List<OutputInfo> outputs; |
| 15 | final EVMChainTransactionPriority? priority; |
| 16 | final int? feeRate; |
| 17 | final CryptoCurrency currency; |
| 18 | final bool useBlinkProtection; |
| 19 | } |