Updated on 2026-08-14

This commit is contained in:
Tangem 2025-12-17 14:05:58 +03:00
commit 3cbc2dadfb
822 changed files with 12838 additions and 5366 deletions

View file

@ -0,0 +1,7 @@
<?xml version="1.0" ?>
<SmellBaseline>
<ManuallySuppressedIssues/>
<CurrentIssues>
<ID>NullableToStringCall:YieldMarketToken.kt$YieldMarketToken$${backendId}</ID>
</CurrentIssues>
</SmellBaseline>

View file

@ -0,0 +1,10 @@
package com.tangem.domain.yield.supply.models
/**
* Represents the availability of yield supply for a given asset.
*/
sealed class YieldSupplyAvailability {
data class Available(val apy: String) : YieldSupplyAvailability()
data object Unavailable : YieldSupplyAvailability()
}