mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-06-28 12:29:51 +00:00
* feat(deuro): Enhance gas fee handling and error management for Deuro Savings Transactions. This change: - Introduces DeuroGasFeeException to handle insufficient ETH for gas fees. - Adds check for ETH balance before savings transactions to prevent failures due to insufficient funds. - Updates savings transaction methods to include error handling. - Adds UI feedback for transaction failures in DEuroSavingsPage. * Fix conflicts * Update cw_ethereum/lib/deuro/deuro_savings.dart Co-authored-by: Konstantin Ullrich <konstantinullrich12@gmail.com> --------- Co-authored-by: Omar Hatem <omarh.ismail1@gmail.com> Co-authored-by: Konstantin Ullrich <konstantinullrich12@gmail.com>
53 lines
1.7 KiB
Dart
53 lines
1.7 KiB
Dart
import 'package:cw_core/crypto_currency.dart';
|
|
|
|
class EVMChainTransactionCreationException implements Exception {
|
|
final String exceptionMessage;
|
|
|
|
EVMChainTransactionCreationException(CryptoCurrency currency)
|
|
: exceptionMessage = 'Wrong balance. Not enough ${currency.title} on your balance.';
|
|
|
|
EVMChainTransactionCreationException.fromMessage(this.exceptionMessage);
|
|
|
|
@override
|
|
String toString() => exceptionMessage;
|
|
}
|
|
|
|
|
|
class EVMChainTransactionFeesException implements Exception {
|
|
final String exceptionMessage;
|
|
|
|
EVMChainTransactionFeesException(String currency)
|
|
: exceptionMessage = 'Transaction failed due to insufficient $currency balance to cover the fees.';
|
|
|
|
@override
|
|
String toString() => exceptionMessage;
|
|
}
|
|
|
|
class DeuroGasFeeException implements Exception {
|
|
final String exceptionMessage;
|
|
final BigInt? requiredGasFee;
|
|
final BigInt? currentBalance;
|
|
|
|
DeuroGasFeeException({
|
|
this.requiredGasFee,
|
|
this.currentBalance,
|
|
}) : exceptionMessage = _buildMessage(requiredGasFee, currentBalance);
|
|
|
|
static String _buildMessage(BigInt? requiredGasFee, BigInt? currentBalance) {
|
|
const baseMessage = 'Insufficient ETH for gas fees.';
|
|
const addEthMessage = ' Please add ETH to your wallet to cover transaction fees.';
|
|
|
|
if (requiredGasFee != null) {
|
|
final requiredEth = (requiredGasFee / BigInt.from(10).pow(18)).toStringAsFixed(8);
|
|
final balanceInfo = currentBalance != null
|
|
? ', Available: ${(currentBalance / BigInt.from(10).pow(18)).toStringAsFixed(8)} ETH'
|
|
: '';
|
|
return '$baseMessage Required: ~$requiredEth ETH$balanceInfo.$addEthMessage';
|
|
}
|
|
|
|
return '$baseMessage$addEthMessage';
|
|
}
|
|
|
|
@override
|
|
String toString() => exceptionMessage;
|
|
}
|