mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-06-28 12:29:51 +00:00
CW- 463 Fix transaction receive address not showing for Eth/Erc20 (#1076)
* Fix transaction receive address not showing for Eth/Erc20 [skip ci] * Fix transaction receive address for Eth/Erc20
This commit is contained in:
parent
4bcf6162f1
commit
4c9c6a1eae
5 changed files with 9 additions and 1 deletions
|
@ -14,6 +14,7 @@ class EthereumTransactionInfo extends TransactionInfo {
|
|||
required this.isPending,
|
||||
required this.date,
|
||||
required this.confirmations,
|
||||
required this.to,
|
||||
}) : this.amount = ethAmount.toInt(),
|
||||
this.fee = ethFee.toInt();
|
||||
|
||||
|
@ -30,6 +31,7 @@ class EthereumTransactionInfo extends TransactionInfo {
|
|||
final int confirmations;
|
||||
final String tokenSymbol;
|
||||
String? _fiatAmount;
|
||||
final String? to;
|
||||
|
||||
@override
|
||||
String amountFormatted() =>
|
||||
|
@ -56,6 +58,7 @@ class EthereumTransactionInfo extends TransactionInfo {
|
|||
isPending: data['isPending'] as bool,
|
||||
confirmations: data['confirmations'] as int,
|
||||
tokenSymbol: data['tokenSymbol'] as String,
|
||||
to: data['to'],
|
||||
);
|
||||
}
|
||||
|
||||
|
@ -70,5 +73,6 @@ class EthereumTransactionInfo extends TransactionInfo {
|
|||
'isPending': isPending,
|
||||
'confirmations': confirmations,
|
||||
'tokenSymbol': tokenSymbol,
|
||||
'to': to,
|
||||
};
|
||||
}
|
||||
|
|
|
@ -283,6 +283,7 @@ abstract class EthereumWalletBase
|
|||
ethFee: BigInt.from(transactionModel.gasUsed) * transactionModel.gasPrice,
|
||||
exponent: transactionModel.tokenDecimal ?? 18,
|
||||
tokenSymbol: transactionModel.tokenSymbol ?? "ETH",
|
||||
to: transactionModel.to,
|
||||
);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue