mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-01 18:07:44 +00:00
24 lines
695 B
Dart
24 lines
695 B
Dart
import 'package:cake_wallet/bitcoin/bitcoin_address_record.dart';
|
|
|
|
class BitcoinUnspent {
|
|
BitcoinUnspent(this.address, this.hash, this.value, this.vout)
|
|
: isSending = true,
|
|
isFrozen = false,
|
|
note = '';
|
|
|
|
factory BitcoinUnspent.fromJSON(
|
|
BitcoinAddressRecord address, Map<String, dynamic> json) =>
|
|
BitcoinUnspent(address, json['tx_hash'] as String, json['value'] as int,
|
|
json['tx_pos'] as int);
|
|
|
|
final BitcoinAddressRecord address;
|
|
final String hash;
|
|
final int value;
|
|
final int vout;
|
|
|
|
bool get isP2wpkh =>
|
|
address.address.startsWith('bc') || address.address.startsWith('ltc');
|
|
bool isSending;
|
|
bool isFrozen;
|
|
String note;
|
|
}
|