Updated on 2026-08-14

This commit is contained in:
Tangem 2026-06-18 12:36:46 +05:00
parent 26201c5c0b
commit 0be1358760
39 changed files with 581 additions and 124 deletions

View file

@ -14,6 +14,7 @@ sealed class AddressValidation {
sealed class Error : AddressValidation() {
data object AddressInWallet : Error()
data object InvalidAddress : Error()
data object RecipientWalletBackupError : Error()
data class DataError(val throwable: Throwable) : Error()
}
}