mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-01 09:57:46 +00:00
315c4c911c
* fix checkbox
* save the output state
* add note as a header
* Allow copy the Amount and Address
* add frozen balance to dashboard
* add block explorer
* fix url launcher
* code formatting
* minor fixes
* Revert "minor fixes"
This reverts commit d230b6a07b
.
* fix missing implementations error
* [skip ci] update localization
* fix unspent with same txid
* add amount check
* add vout check
* remove formattedTotalAvailableBalance
* remove unrelated mac os files
41 lines
No EOL
678 B
Dart
41 lines
No EOL
678 B
Dart
import 'package:mobx/mobx.dart';
|
|
|
|
part 'unspent_coins_item.g.dart';
|
|
|
|
class UnspentCoinsItem = UnspentCoinsItemBase with _$UnspentCoinsItem;
|
|
|
|
abstract class UnspentCoinsItemBase with Store {
|
|
UnspentCoinsItemBase({
|
|
required this.address,
|
|
required this.amount,
|
|
required this.hash,
|
|
required this.isFrozen,
|
|
required this.note,
|
|
required this.isSending,
|
|
required this.amountRaw,
|
|
required this.vout});
|
|
|
|
@observable
|
|
String address;
|
|
|
|
@observable
|
|
String amount;
|
|
|
|
@observable
|
|
String hash;
|
|
|
|
@observable
|
|
bool isFrozen;
|
|
|
|
@observable
|
|
String note;
|
|
|
|
@observable
|
|
bool isSending;
|
|
|
|
@observable
|
|
int amountRaw;
|
|
|
|
@observable
|
|
int vout;
|
|
} |