mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-01-03 17:40:43 +00:00
19 lines
611 B
Dart
19 lines
611 B
Dart
|
import 'package:cw_core/crypto_currency.dart';
|
||
|
import 'package:cw_core/output_info.dart';
|
||
|
import 'package:cw_ethereum/ethereum_transaction_credentials.dart';
|
||
|
import 'package:cw_polygon/polygon_transaction_priority.dart';
|
||
|
|
||
|
class PolygonTransactionCredentials extends EthereumTransactionCredentials {
|
||
|
PolygonTransactionCredentials(
|
||
|
List<OutputInfo> outputs, {
|
||
|
required PolygonTransactionPriority? priority,
|
||
|
required CryptoCurrency currency,
|
||
|
final int? feeRate,
|
||
|
}) : super(
|
||
|
outputs,
|
||
|
currency: currency,
|
||
|
priority: priority,
|
||
|
feeRate: feeRate,
|
||
|
);
|
||
|
}
|