Updated on 2026-08-14

This commit is contained in:
Tangem 2024-12-23 18:31:26 +03:00
parent e9cb936766
commit 8e3bdacae1
9 changed files with 30 additions and 1 deletions

View file

@ -141,4 +141,9 @@ object BlockchainUtils {
private fun getNetworkNameWithoutTestnet(blockchain: Blockchain): String {
return blockchain.getNetworkName().replace(oldValue = " Testnet", newValue = "")
}
fun isTokenBetaFunctionality(blockchainId: String): Boolean {
val blockchain = Blockchain.fromId(blockchainId)
return blockchain == Blockchain.Kaspa
}
}