Updated on 2026-08-14

This commit is contained in:
Tangem 2024-01-26 13:38:10 +01:00
parent 59edfa2d94
commit cb673c9ac6
11 changed files with 32 additions and 37 deletions

View file

@ -2,7 +2,6 @@ package com.tangem.lib.crypto
import com.tangem.lib.crypto.models.Currency
import com.tangem.lib.crypto.models.ProxyAmount
import com.tangem.lib.crypto.models.ProxyFiatCurrency
/**
* Provider for user tokens data
@ -67,11 +66,6 @@ interface UserWalletManager {
@Throws(IllegalStateException::class)
fun getNetworkCurrency(networkId: String): String
/**
* Returns selected app currency
*/
fun getUserAppCurrency(): ProxyFiatCurrency
@Throws(IllegalStateException::class)
suspend fun getLastTransactionHash(networkId: String, derivationPath: String?): String?
}