mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-22 11:39:22 +00:00
13 lines
284 B
Dart
13 lines
284 B
Dart
|
import 'package:cw_core/crypto_currency.dart';
|
||
|
import 'package:cw_core/output_info.dart';
|
||
|
|
||
|
class SolanaTransactionCredentials {
|
||
|
SolanaTransactionCredentials(
|
||
|
this.outputs, {
|
||
|
required this.currency,
|
||
|
});
|
||
|
|
||
|
final List<OutputInfo> outputs;
|
||
|
final CryptoCurrency currency;
|
||
|
}
|