cake_wallet/lib/exchange/trade.dart

137 lines
3.2 KiB
Dart
Raw Normal View History

2020-09-21 11:50:26 +00:00
import 'package:cake_wallet/exchange/exchange_provider_description.dart';
import 'package:cake_wallet/exchange/trade_state.dart';
import 'package:cw_core/crypto_currency.dart';
2021-12-24 12:37:24 +00:00
import 'package:cw_core/format_amount.dart';
import 'package:cw_core/hive_type_ids.dart';
import 'package:hive/hive.dart';
2020-01-04 19:31:52 +00:00
part 'trade.g.dart';
2021-01-15 17:41:30 +00:00
@HiveType(typeId: Trade.typeId)
2020-01-04 19:31:52 +00:00
class Trade extends HiveObject {
Trade({
required this.id,
required this.amount,
ExchangeProviderDescription? provider,
CryptoCurrency? from,
CryptoCurrency? to,
TradeState? state,
this.createdAt,
this.expiredAt,
this.inputAddress,
this.extraId,
this.outputTransaction,
this.refundAddress,
this.walletId,
this.payoutAddress,
this.password,
this.providerId,
this.providerName,
this.fromWalletAddress
}) {
if (provider != null) providerRaw = provider.raw;
if (from != null) fromRaw = from.raw;
if (to != null) toRaw = to.raw;
if (state != null) stateRaw = state.raw;
2022-10-12 17:09:57 +00:00
}
2020-01-08 12:26:34 +00:00
static const typeId = TRADE_TYPE_ID;
2020-01-04 19:31:52 +00:00
static const boxName = 'Trades';
2020-09-21 11:50:26 +00:00
static const boxKey = 'tradesBoxKey';
2020-01-04 19:31:52 +00:00
@HiveField(0, defaultValue: '')
2020-01-04 19:31:52 +00:00
String id;
@HiveField(1, defaultValue: 0)
2022-10-12 17:09:57 +00:00
late int providerRaw;
2020-01-04 19:31:52 +00:00
ExchangeProviderDescription get provider =>
ExchangeProviderDescription.deserialize(raw: providerRaw);
@HiveField(2, defaultValue: 0)
2022-10-12 17:09:57 +00:00
late int fromRaw;
2020-01-04 19:31:52 +00:00
CryptoCurrency get from => CryptoCurrency.deserialize(raw: fromRaw);
@HiveField(3, defaultValue: 0)
2022-10-12 17:09:57 +00:00
late int toRaw;
2020-01-04 19:31:52 +00:00
CryptoCurrency get to => CryptoCurrency.deserialize(raw: toRaw);
@HiveField(4, defaultValue: '')
2022-10-12 17:09:57 +00:00
late String stateRaw;
2020-01-04 19:31:52 +00:00
TradeState get state => TradeState.deserialize(raw: stateRaw);
@HiveField(5)
2022-10-12 17:09:57 +00:00
DateTime? createdAt;
2020-01-04 19:31:52 +00:00
@HiveField(6)
2022-10-12 17:09:57 +00:00
DateTime? expiredAt;
2020-01-04 19:31:52 +00:00
@HiveField(7, defaultValue: '')
2020-01-04 19:31:52 +00:00
String amount;
@HiveField(8)
2022-10-12 17:09:57 +00:00
String? inputAddress;
2020-01-04 19:31:52 +00:00
@HiveField(9)
2022-10-12 17:09:57 +00:00
String? extraId;
2020-01-04 19:31:52 +00:00
@HiveField(10)
2022-10-12 17:09:57 +00:00
String? outputTransaction;
2020-01-04 19:31:52 +00:00
@HiveField(11)
2022-10-12 17:09:57 +00:00
String? refundAddress;
2020-01-04 19:31:52 +00:00
@HiveField(12)
2022-10-12 17:09:57 +00:00
String? walletId;
2020-01-04 19:31:52 +00:00
@HiveField(13)
String? payoutAddress;
@HiveField(14)
String? password;
@HiveField(15)
String? providerId;
@HiveField(16)
String? providerName;
@HiveField(17)
String? fromWalletAddress;
2022-10-12 17:09:57 +00:00
static Trade fromMap(Map<String, Object?> map) {
2020-01-04 19:31:52 +00:00
return Trade(
2020-01-08 12:26:34 +00:00
id: map['id'] as String,
provider: ExchangeProviderDescription.deserialize(raw: map['provider'] as int),
2020-01-08 12:26:34 +00:00
from: CryptoCurrency.deserialize(raw: map['input'] as int),
to: CryptoCurrency.deserialize(raw: map['output'] as int),
createdAt:
map['date'] != null ? DateTime.fromMillisecondsSinceEpoch(map['date'] as int) : null,
2020-01-08 12:26:34 +00:00
amount: map['amount'] as String,
walletId: map['wallet_id'] as String,
fromWalletAddress: map['from_wallet_address'] as String?
);
2020-01-04 19:31:52 +00:00
}
Map<String, dynamic> toMap() {
2020-01-08 12:26:34 +00:00
return <String, dynamic>{
2020-01-04 19:31:52 +00:00
'id': id,
'provider': provider.serialize(),
'input': from.serialize(),
'output': to.serialize(),
2022-10-12 17:09:57 +00:00
'date': createdAt != null ? createdAt!.millisecondsSinceEpoch : null,
2020-01-04 19:31:52 +00:00
'amount': amount,
'wallet_id': walletId,
'from_wallet_address': fromWalletAddress
2020-01-04 19:31:52 +00:00
};
}
String amountFormatted() => formatAmount(amount);
2020-01-04 19:31:52 +00:00
}