mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-25 21:19:37 +00:00
26 lines
500 B
Dart
26 lines
500 B
Dart
|
import 'package:cw_core/hive_type_ids.dart';
|
||
|
import 'package:hive/hive.dart';
|
||
|
|
||
|
// part 'mweb_utxo.g.dart';
|
||
|
|
||
|
@HiveType(typeId: MWEB_UTXO_TYPE_ID)
|
||
|
class MwebUtxo extends HiveObject {
|
||
|
MwebUtxo({
|
||
|
required this.address,
|
||
|
this.accountIndex,
|
||
|
required this.label,
|
||
|
});
|
||
|
|
||
|
static const typeId = MWEB_UTXO_TYPE_ID;
|
||
|
static const boxName = 'MwebUtxo';
|
||
|
|
||
|
@HiveField(0)
|
||
|
int? accountIndex;
|
||
|
|
||
|
@HiveField(1, defaultValue: '')
|
||
|
String address;
|
||
|
|
||
|
@HiveField(2, defaultValue: '')
|
||
|
String label;
|
||
|
}
|