Updated on 2026-08-14

This commit is contained in:
Tangem 2024-04-25 11:35:55 +02:00
parent 06941914cd
commit 396bc35770
8 changed files with 126 additions and 218 deletions

View file

@ -6,6 +6,8 @@ import com.tangem.domain.tokens.model.CryptoCurrency
* Manager that holds info about available actions as Sell and Buy
*/
interface RampStateManager {
fun availableForBuy(cryptoCurrency: CryptoCurrency): Boolean
fun availableForSell(cryptoCurrency: CryptoCurrency): Boolean
}