mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-22 11:39:22 +00:00
CW-647-Birdpay-Trc20 (#1469)
* fix: Desktop resize bug * fix: Birdpay working for trc20 and adjust transaction fee currency * fix: Filter logic * fix: Solana token balance not fully displaying * fix: Minor enhancements
This commit is contained in:
parent
058522caf1
commit
24f6541fa6
3 changed files with 16 additions and 5 deletions
|
@ -253,7 +253,7 @@ class CryptoCurrency extends EnumerableItem<int> with Serializable<int> implemen
|
||||||
static CryptoCurrency fromString(String name, {CryptoCurrency? walletCurrency}) {
|
static CryptoCurrency fromString(String name, {CryptoCurrency? walletCurrency}) {
|
||||||
try {
|
try {
|
||||||
return CryptoCurrency.all.firstWhere((element) =>
|
return CryptoCurrency.all.firstWhere((element) =>
|
||||||
element.title.toLowerCase() == name &&
|
element.title.toLowerCase() == name.toLowerCase() &&
|
||||||
(element.tag == null ||
|
(element.tag == null ||
|
||||||
element.tag == walletCurrency?.title ||
|
element.tag == walletCurrency?.title ||
|
||||||
element.tag == walletCurrency?.tag));
|
element.tag == walletCurrency?.tag));
|
||||||
|
|
|
@ -15,8 +15,8 @@ class SolanaBalance extends Balance {
|
||||||
|
|
||||||
String _balanceFormatted() {
|
String _balanceFormatted() {
|
||||||
String stringBalance = balance.toString();
|
String stringBalance = balance.toString();
|
||||||
if (stringBalance.toString().length >= 6) {
|
if (stringBalance.toString().length >= 12) {
|
||||||
stringBalance = stringBalance.substring(0, 6);
|
stringBalance = stringBalance.substring(0, 12);
|
||||||
}
|
}
|
||||||
return stringBalance;
|
return stringBalance;
|
||||||
}
|
}
|
||||||
|
|
|
@ -139,8 +139,7 @@ abstract class SendViewModelBase extends WalletChangeListenerViewModel with Stor
|
||||||
String get pendingTransactionFeeFiatAmount {
|
String get pendingTransactionFeeFiatAmount {
|
||||||
try {
|
try {
|
||||||
if (pendingTransaction != null) {
|
if (pendingTransaction != null) {
|
||||||
final currency =
|
final currency = pendingTransactionFeeCurrency(walletType);
|
||||||
isEVMCompatibleChain(walletType) ? wallet.currency : selectedCryptoCurrency;
|
|
||||||
final fiat = calculateFiatAmount(
|
final fiat = calculateFiatAmount(
|
||||||
price: _fiatConversationStore.prices[currency]!,
|
price: _fiatConversationStore.prices[currency]!,
|
||||||
cryptoAmount: pendingTransaction!.feeFormatted);
|
cryptoAmount: pendingTransaction!.feeFormatted);
|
||||||
|
@ -153,6 +152,18 @@ abstract class SendViewModelBase extends WalletChangeListenerViewModel with Stor
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
CryptoCurrency pendingTransactionFeeCurrency(WalletType type) {
|
||||||
|
switch (type) {
|
||||||
|
case WalletType.ethereum:
|
||||||
|
case WalletType.polygon:
|
||||||
|
case WalletType.tron:
|
||||||
|
case WalletType.solana:
|
||||||
|
return wallet.currency;
|
||||||
|
default:
|
||||||
|
return selectedCryptoCurrency;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
FiatCurrency get fiat => _settingsStore.fiatCurrency;
|
FiatCurrency get fiat => _settingsStore.fiatCurrency;
|
||||||
|
|
||||||
TransactionPriority get transactionPriority {
|
TransactionPriority get transactionPriority {
|
||||||
|
|
Loading…
Reference in a new issue