Updated on 2026-08-14

This commit is contained in:
Tangem 2025-08-04 12:11:22 +04:00
parent aa2439e3fa
commit e803ab0d7d
12 changed files with 103 additions and 24 deletions

View file

@ -19,4 +19,9 @@ sealed class SimulationData {
data class Approve(
val approvedAmounts: List<ApprovedAmount>,
) : SimulationData()
/**
* Simulation was successfully performed and no changes detected
*/
data object NoWalletChangesDetected : SimulationData()
}