mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-17 01:37:40 +00:00
b3d579c24a
* chore: Initial setup for polygon package * feat: Add polygon node urls * feat: Add Polygon(MATIC) wallet WIP * feat: Add Polygon(MATIC) wallet WIP * feat: Add Polygon MATIC wallet [skip ci] * fix: Issue with create/restore wallet for polygon * feat: Add erc20 tokens for polygon * feat: Adding Polygon MATIC Wallet * fix: Add build command for polygon to workflow file to fix failing action * fix: Switch evm to not display additional balance * chore: Sync with remote * fix: Revert change to inject app script * feat: Add polygon erc20 tokens * feat: Increase migration version * fix: Restore from QR address validator fix * fix: Adjust wallet connect connection flow to adapt to wallet type * fix: Make wallet fetch nfts based on the current wallet type * fix: Make wallet fetch nfts based on the current wallet type * fix: Try fetching transactions with moralis * fix: Requested review changes * fix: Error creating new wallet * fix: Revert script * fix: Exclude spam NFTs from nft listing API response * Update default_erc20_tokens.dart * replace matic with matic poly * Add polygon wallet scheme to app links * style: reformat default_settings_migration.dart * minor enhancement * fix using different wallet function for setting the transaction priorities * fix: Add chain to calls * Add USDC.e to initial coins * Add other default polygon node * Use Polygon scan some UI fixes * Add polygon scan api key to secrets generation code --------- Co-authored-by: Omar Hatem <omarh.ismail1@gmail.com>
48 lines
1.5 KiB
Dart
48 lines
1.5 KiB
Dart
//! Model used for in parsing transactions fetched using etherscan
|
|
class EthereumTransactionModel {
|
|
final DateTime date;
|
|
final String hash;
|
|
final String from;
|
|
final String to;
|
|
final BigInt amount;
|
|
final int gasUsed;
|
|
final BigInt gasPrice;
|
|
final String contractAddress;
|
|
final int confirmations;
|
|
final int blockNumber;
|
|
final String? tokenSymbol;
|
|
final int? tokenDecimal;
|
|
final bool isError;
|
|
|
|
EthereumTransactionModel({
|
|
required this.date,
|
|
required this.hash,
|
|
required this.from,
|
|
required this.to,
|
|
required this.amount,
|
|
required this.gasUsed,
|
|
required this.gasPrice,
|
|
required this.contractAddress,
|
|
required this.confirmations,
|
|
required this.blockNumber,
|
|
required this.tokenSymbol,
|
|
required this.tokenDecimal,
|
|
required this.isError,
|
|
});
|
|
|
|
factory EthereumTransactionModel.fromJson(Map<String, dynamic> json) => EthereumTransactionModel(
|
|
date: DateTime.fromMillisecondsSinceEpoch(int.parse(json["timeStamp"]) * 1000),
|
|
hash: json["hash"],
|
|
from: json["from"],
|
|
to: json["to"],
|
|
amount: BigInt.parse(json["value"]),
|
|
gasUsed: int.parse(json["gasUsed"]),
|
|
gasPrice: BigInt.parse(json["gasPrice"]),
|
|
contractAddress: json["contractAddress"],
|
|
confirmations: int.parse(json["confirmations"]),
|
|
blockNumber: int.parse(json["blockNumber"]),
|
|
tokenSymbol: json["tokenSymbol"] ?? "ETH",
|
|
tokenDecimal: int.tryParse(json["tokenDecimal"] ?? ""),
|
|
isError: json["isError"] == "1",
|
|
);
|
|
}
|