Updated on 2026-08-14

This commit is contained in:
Tangem 2025-04-11 16:19:02 +04:00
parent 784161880d
commit 3d214007f4
14 changed files with 161 additions and 30 deletions

View file

@ -0,0 +1,15 @@
package com.tangem.domain.quotes
import com.tangem.domain.tokens.model.CryptoCurrency
import com.tangem.domain.tokens.model.Quote
/**
* Quotes repository
*
[REDACTED_AUTHOR]
*/
interface QuotesRepositoryV2 {
/** Get quotes by [currenciesIds] synchronously or null */
suspend fun getMultiQuoteSyncOrNull(currenciesIds: Set<CryptoCurrency.RawID>): Set<Quote>?
}