cake_wallet/cw_monero/lib/api/structs/pending_transaction.dart
Czarek Nakamoto dcf6140444 multiple wallets
new lib
minor fixes
2024-04-20 19:32:13 +02:00

17 lines
No EOL
360 B
Dart

class PendingTransactionDescription {
PendingTransactionDescription({
required this.amount,
required this.fee,
required this.hash,
required this.hex,
required this.txKey,
required this.pointerAddress});
final int amount;
final int fee;
final String hash;
final String hex;
final String txKey;
final int pointerAddress;
}