mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-17 01:37:40 +00:00
7410daacff
* feat: Create central package for EVM chains * chore: Cleanup pubspec and add core evm dependencies * feat: Replicated core evm chain files, time to start fixing the issues * feat: Setup evm central package to handle all evm chains * feat: Link up Polygon and Ethereum wallets to the centra evm package, fix bugs and issues, and optimze for better performance * feat: Setup and adjust configs to reflect new evm configurations * Remove unneeded file * fix: Changes done while re-reviewing entire structure and refactor * fix: Add evm chain wallet path to imports in configure file * feat: Adjust implementation of parent class, remove unneeded files, remove windows, linux and mac directories, restructure the evm child classes * fix: Make EVMChainWallet a central abstract class and adjust accordingly * fix: Adjust transaction info, restructure EVMWalletChain to be an abstract, adjust external facing interfaces for polygon and ethereum, adjust configuration for ethereum and polygon in configure file * fix: Testing issues * fix: Add localization for nft tile and details page texts and add dashes for null responses * fix: merge conflicts * Minor fixes for building Monero.com --------- Co-authored-by: OmarHatem <omarh.ismail1@gmail.com>
77 lines
2.1 KiB
Dart
77 lines
2.1 KiB
Dart
// ignore_for_file: overridden_fields, annotate_overrides
|
|
|
|
import 'dart:math';
|
|
|
|
import 'package:cw_core/format_amount.dart';
|
|
import 'package:cw_core/transaction_direction.dart';
|
|
import 'package:cw_core/transaction_info.dart';
|
|
|
|
abstract class EVMChainTransactionInfo extends TransactionInfo {
|
|
EVMChainTransactionInfo({
|
|
required this.id,
|
|
required this.height,
|
|
required this.ethAmount,
|
|
required this.ethFee,
|
|
required this.tokenSymbol,
|
|
this.exponent = 18,
|
|
required this.direction,
|
|
required this.isPending,
|
|
required this.date,
|
|
required this.confirmations,
|
|
required this.to,
|
|
required this.from,
|
|
}) : amount = ethAmount.toInt(),
|
|
fee = ethFee.toInt();
|
|
|
|
final String id;
|
|
final int height;
|
|
final int amount;
|
|
final BigInt ethAmount;
|
|
final int exponent;
|
|
final TransactionDirection direction;
|
|
final DateTime date;
|
|
final bool isPending;
|
|
final int fee;
|
|
final BigInt ethFee;
|
|
final int confirmations;
|
|
final String tokenSymbol;
|
|
String? _fiatAmount;
|
|
final String? to;
|
|
final String? from;
|
|
|
|
//! Getter to be overridden in child classes
|
|
String get feeCurrency;
|
|
|
|
@override
|
|
String amountFormatted() {
|
|
final amount = formatAmount((ethAmount / BigInt.from(10).pow(exponent)).toString());
|
|
return '${amount.substring(0, min(10, amount.length))} $tokenSymbol';
|
|
}
|
|
|
|
@override
|
|
String fiatAmount() => _fiatAmount ?? '';
|
|
|
|
@override
|
|
void changeFiatAmount(String amount) => _fiatAmount = formatAmount(amount);
|
|
|
|
@override
|
|
String feeFormatted() {
|
|
final amount = (ethFee / BigInt.from(10).pow(18)).toString();
|
|
return '${amount.substring(0, min(10, amount.length))} $feeCurrency';
|
|
}
|
|
|
|
Map<String, dynamic> toJson() => {
|
|
'id': id,
|
|
'height': height,
|
|
'amount': ethAmount.toString(),
|
|
'exponent': exponent,
|
|
'fee': ethFee.toString(),
|
|
'direction': direction.index,
|
|
'date': date.millisecondsSinceEpoch,
|
|
'isPending': isPending,
|
|
'confirmations': confirmations,
|
|
'tokenSymbol': tokenSymbol,
|
|
'to': to,
|
|
'from': from,
|
|
};
|
|
}
|