2024-03-16 10:55:03 +00:00
|
|
|
import 'package:cw_core/crypto_currency.dart';
|
2023-10-02 14:17:35 +00:00
|
|
|
import 'package:cw_core/monero_transaction_priority.dart';
|
|
|
|
import 'package:cw_core/output_info.dart';
|
|
|
|
|
2024-03-08 10:50:34 +00:00
|
|
|
class ZanoTransactionCredentials {
|
2024-03-16 10:55:03 +00:00
|
|
|
ZanoTransactionCredentials({required this.outputs, required this.priority, required this.currency});
|
2023-10-02 14:17:35 +00:00
|
|
|
|
|
|
|
final List<OutputInfo> outputs;
|
|
|
|
final MoneroTransactionPriority priority;
|
2024-03-16 10:55:03 +00:00
|
|
|
final CryptoCurrency currency;
|
|
|
|
//final String assetType;
|
2023-10-02 14:17:35 +00:00
|
|
|
}
|