Updated on 2026-08-14

This commit is contained in:
Tangem 2024-08-28 18:05:46 +05:00
parent 6cd6210a05
commit c10f747de8
6 changed files with 629 additions and 2 deletions

View file

@ -56,6 +56,11 @@ object BlockchainUtils {
return Blockchain.fromNetworkId(networkId)?.isSupportedInApp() ?: false
}
fun isArbitrum(networkId: String): Boolean {
val blockchain = Blockchain.fromId(networkId)
return blockchain == Blockchain.Arbitrum
}
data class BlockchainInfo(
val blockchainId: String,
val name: String,