mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-01 01:47:41 +00:00
af9b5ff10c
* initial button refactor and gradient background * CW-397 Use a separate Hive instance to avoid Issues with plugins using Hive * CW-397 Add Support Page Strings * CW-397 Add new Support Page * CW-397 Add Support Live Chat Page * CW-397 Add Hive Type Ids Doc * CW-397 Use Newer Chatwoot SDK Version and add new Images * CW-397 Update pubspec_base.yaml * CW-397 Add own Chatwoot Widget * Lowercase `s` skip-ci * CW-397 Fix WebMessageListener * CW-397 Fix Merge conflicts * CW-397 Add Erc20 Hive Type ID * CW-397 Fix Ethereum Hive Error * CW-397 Revert to Restore Button * CW-397 Only use In App chat on mobile * CW-397 Move Chatwoot Website Token to secrets * CW-397 Add Chatwoot Website Token to workflow * CW-397 Move Chatwoot fetchUrl to Support View Model --------- Co-authored-by: Rafael Saes <git@saes.io> Co-authored-by: Justin Ehrenhofer <justin.ehrenhofer@gmail.com>
70 lines
1.6 KiB
Dart
70 lines
1.6 KiB
Dart
import 'package:cake_wallet/buy/buy_provider_description.dart';
|
|
import 'package:cake_wallet/exchange/trade_state.dart';
|
|
import 'package:cw_core/format_amount.dart';
|
|
import 'package:cw_core/hive_type_ids.dart';
|
|
import 'package:hive/hive.dart';
|
|
|
|
part 'order.g.dart';
|
|
|
|
@HiveType(typeId: Order.typeId)
|
|
class Order extends HiveObject {
|
|
Order(
|
|
{required this.id,
|
|
required this.transferId,
|
|
required this.createdAt,
|
|
required this.amount,
|
|
required this.receiveAddress,
|
|
required this.walletId,
|
|
BuyProviderDescription? provider,
|
|
TradeState? state,
|
|
this.from,
|
|
this.to}) {
|
|
if (provider != null) {
|
|
providerRaw = provider.raw;
|
|
}
|
|
if (state != null) {
|
|
stateRaw = state.raw;
|
|
}
|
|
}
|
|
|
|
static const typeId = ORDER_TYPE_ID;
|
|
static const boxName = 'Orders';
|
|
static const boxKey = 'ordersBoxKey';
|
|
|
|
@HiveField(0, defaultValue: '')
|
|
String id;
|
|
|
|
@HiveField(1, defaultValue: '')
|
|
String transferId;
|
|
|
|
@HiveField(2)
|
|
String? from;
|
|
|
|
@HiveField(3)
|
|
String? to;
|
|
|
|
@HiveField(4, defaultValue: '')
|
|
late String stateRaw;
|
|
|
|
TradeState get state => TradeState.deserialize(raw: stateRaw);
|
|
|
|
@HiveField(5)
|
|
DateTime createdAt;
|
|
|
|
@HiveField(6, defaultValue: '')
|
|
String amount;
|
|
|
|
@HiveField(7, defaultValue: '')
|
|
String receiveAddress;
|
|
|
|
@HiveField(8, defaultValue: '')
|
|
String walletId;
|
|
|
|
@HiveField(9, defaultValue: 0)
|
|
late int providerRaw;
|
|
|
|
BuyProviderDescription get provider =>
|
|
BuyProviderDescription.deserialize(raw: providerRaw);
|
|
|
|
String amountFormatted() => formatAmount(amount);
|
|
}
|