Updated on 2026-08-14

This commit is contained in:
Tangem 2023-01-27 15:30:12 +03:00
parent 3ad192c433
commit 93349d80f4
18 changed files with 247 additions and 42 deletions

View file

@ -44,4 +44,12 @@ interface TransactionManager {
suspend fun updateWalletManager(networkId: String)
fun calculateFee(networkId: String, gasPrice: String, estimatedGas: Int): BigDecimal
/**
* In app blockchain id, actual in blockchain sdk, not the same as networkId
*
* workaround till not use backend only and not integrated server vs sdk
*/
@Throws(IllegalStateException::class)
fun getBlockchainId(networkId: String): String
}