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>
49 lines
1.6 KiB
Dart
49 lines
1.6 KiB
Dart
import 'package:cw_core/transaction_direction.dart';
|
|
import 'package:cw_ethereum/ethereum_transaction_info.dart';
|
|
|
|
class PolygonTransactionInfo extends EthereumTransactionInfo {
|
|
PolygonTransactionInfo({
|
|
required String id,
|
|
required int height,
|
|
required BigInt ethAmount,
|
|
int exponent = 18,
|
|
required TransactionDirection direction,
|
|
required DateTime date,
|
|
required bool isPending,
|
|
required BigInt ethFee,
|
|
required int confirmations,
|
|
String tokenSymbol = "MATIC",
|
|
required String? to,
|
|
}) : super(
|
|
confirmations: confirmations,
|
|
id: id,
|
|
height: height,
|
|
ethAmount: ethAmount,
|
|
exponent: exponent,
|
|
direction: direction,
|
|
date: date,
|
|
isPending: isPending,
|
|
ethFee: ethFee,
|
|
to: to,
|
|
tokenSymbol: tokenSymbol,
|
|
);
|
|
|
|
factory PolygonTransactionInfo.fromJson(Map<String, dynamic> data) {
|
|
return PolygonTransactionInfo(
|
|
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'],
|
|
);
|
|
}
|
|
|
|
@override
|
|
String feeFormatted() => '${(ethFee / BigInt.from(10).pow(18)).toString()} MATIC';
|
|
}
|