|
1
|
import 'package:cw_core/crypto_currency.dart'; |
|
2
|
import 'package:cw_core/output_info.dart'; |
|
3
|
|
|
4
|
class TronTransactionCredentials { |
|
5
|
TronTransactionCredentials( |
|
6
|
this.outputs, { |
|
7
|
required this.currency, |
|
8
|
}); |
|
9
|
|
|
10
|
final List<OutputInfo> outputs; |
|
11
|
final CryptoCurrency currency; |
|
12
|
} |