mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-23 03:59:23 +00:00
20 lines
547 B
Dart
20 lines
547 B
Dart
|
import 'dart:typed_data';
|
||
|
|
||
|
import 'package:cw_ethereum/pending_ethereum_transaction.dart';
|
||
|
|
||
|
class PendingPolygonTransaction extends PendingEthereumTransaction {
|
||
|
PendingPolygonTransaction({
|
||
|
required Function sendTransaction,
|
||
|
required Uint8List signedTransaction,
|
||
|
required BigInt fee,
|
||
|
required String amount,
|
||
|
required int exponent,
|
||
|
}) : super(
|
||
|
amount: amount,
|
||
|
sendTransaction: sendTransaction,
|
||
|
signedTransaction: signedTransaction,
|
||
|
fee: fee,
|
||
|
exponent: exponent,
|
||
|
);
|
||
|
}
|