Updated on 2026-08-14

This commit is contained in:
Tangem 2023-01-13 17:01:04 +03:00
parent cf4dc83d0d
commit 83571f3bd5
19 changed files with 360 additions and 57 deletions

View file

@ -29,4 +29,6 @@ interface TransactionManager {
@Throws(IllegalStateException::class)
fun getNativeTokenDecimals(networkId: String): Int
fun calculateFee(networkId: String, gasPrice: String, estimatedGas: Int): BigDecimal
}

View file

@ -53,4 +53,10 @@ interface UserWalletManager {
* Returns selected app currency
*/
fun getUserAppCurrency(): ProxyFiatCurrency
/**
* @param networkId
* @return currency name
*/
fun getCurrencyByNetworkId(networkId: String): String
}