Updated on 2026-08-14

This commit is contained in:
Tangem 2024-05-13 13:48:13 +08:00
parent a8142a7ddf
commit 11cf593007
6 changed files with 1585 additions and 1456 deletions

View file

@ -44,4 +44,9 @@ object BlockchainUtils {
val blockchain = Blockchain.fromId(networkId)
return blockchain == Blockchain.Tezos
}
fun isCardano(networkId: String): Boolean {
val blockchain = Blockchain.fromId(networkId)
return blockchain == Blockchain.Cardano
}
}