mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-23 03:59:23 +00:00
34 lines
581 B
Dart
34 lines
581 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.height,
|
||
|
required this.value,
|
||
|
required this.address,
|
||
|
required this.outputId,
|
||
|
required this.blockTime,
|
||
|
});
|
||
|
|
||
|
static const typeId = MWEB_UTXO_TYPE_ID;
|
||
|
static const boxName = 'MwebUtxo';
|
||
|
|
||
|
@HiveField(0)
|
||
|
int height;
|
||
|
|
||
|
@HiveField(1)
|
||
|
int value;
|
||
|
|
||
|
@HiveField(2)
|
||
|
String address;
|
||
|
|
||
|
@HiveField(3)
|
||
|
String outputId;
|
||
|
|
||
|
@HiveField(4)
|
||
|
int blockTime;
|
||
|
}
|