CW-1035: Solana New Fixes (#2205)

* fix: Error while restoring Solana Wallet with PrivateKey

* fix: Enhance Solana Error Messages, especially for ATA Creation Errors

* - Optimize Solana Transaction History, now more smoother and faster
- fix bug with transactions history not being displayed in real time until next reload
This commit is contained in:
David Adegoke 2025-04-15 01:37:46 +01:00 committed by GitHub
parent 469373b780
commit f574fa5e9b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
32 changed files with 127 additions and 82 deletions

View file

@ -738,7 +738,7 @@ abstract class SendViewModelBase extends WalletChangeListenerViewModel with Stor
}
if (error is CreateAssociatedTokenAccountException) {
return "${S.current.solana_create_associated_token_account_exception}\n\n${error.errorMessage}";
return "${S.current.solana_create_associated_token_account_exception} ${S.current.added_message_for_ata_error}\n\n${error.errorMessage}";
}
if (error is SignSPLTokenTransactionRentException) {