mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-17 01:37:40 +00:00
1690f6af1e
* evm signature name * hide depositWithExpiry and transfer transactions * Update contact_list_view_model.dart * remove erc20 token history when disabled
41 lines
1.3 KiB
Dart
41 lines
1.3 KiB
Dart
import 'package:cw_core/transaction_direction.dart';
|
|
import 'package:cw_evm/evm_chain_transaction_info.dart';
|
|
|
|
class EthereumTransactionInfo extends EVMChainTransactionInfo {
|
|
EthereumTransactionInfo({
|
|
required super.id,
|
|
required super.height,
|
|
required super.ethAmount,
|
|
required super.ethFee,
|
|
required super.tokenSymbol,
|
|
required super.direction,
|
|
required super.isPending,
|
|
required super.date,
|
|
required super.confirmations,
|
|
required super.to,
|
|
required super.from,
|
|
super.evmSignatureName,
|
|
super.exponent,
|
|
});
|
|
|
|
factory EthereumTransactionInfo.fromJson(Map<String, dynamic> data) {
|
|
return EthereumTransactionInfo(
|
|
id: data['id'] as String,
|
|
height: data['height'] as int,
|
|
ethAmount: BigInt.parse(data['amount']),
|
|
exponent: data['exponent'] as int,
|
|
ethFee: BigInt.parse(data['fee']),
|
|
direction: parseTransactionDirectionFromInt(data['direction'] as int),
|
|
date: DateTime.fromMillisecondsSinceEpoch(data['date'] as int),
|
|
isPending: data['isPending'] as bool,
|
|
confirmations: data['confirmations'] as int,
|
|
tokenSymbol: data['tokenSymbol'] as String,
|
|
to: data['to'],
|
|
from: data['from'],
|
|
evmSignatureName: data['evmSignatureName'],
|
|
);
|
|
}
|
|
|
|
@override
|
|
String get feeCurrency => 'ETH';
|
|
}
|