Updated on 2026-08-14

This commit is contained in:
Tangem 2024-11-01 18:42:51 +03:00
parent 4c0d5727fd
commit 8202b6bf2a
2 changed files with 2 additions and 2 deletions

View file

@ -99,7 +99,7 @@ fun getActiveIconResByCoinId(coinId: String): Int {
"ethereum-classic" -> R.drawable.img_eth_classic_22
"stellar" -> R.drawable.img_stellar_22
"cardano" -> R.drawable.img_cardano_22
"matic-network" -> R.drawable.img_polygon_22
"matic-network", "polygon-ecosystem-token" -> R.drawable.img_polygon_22
"avalanche-2" -> R.drawable.img_avalanche_22
"solana" -> R.drawable.img_solana_22
"fantom" -> R.drawable.img_fantom_22

View file

@ -295,7 +295,7 @@ fun Blockchain.toCoinId(): String {
Blockchain.EthereumClassic, Blockchain.EthereumClassicTestnet -> "ethereum-classic"
Blockchain.Stellar, Blockchain.StellarTestnet -> "stellar"
Blockchain.Cardano -> "cardano"
Blockchain.Polygon, Blockchain.PolygonTestnet -> "matic-network"
Blockchain.Polygon, Blockchain.PolygonTestnet -> "polygon-ecosystem-token"
Blockchain.Arbitrum, Blockchain.ArbitrumTestnet -> "arbitrum-one"
Blockchain.Avalanche, Blockchain.AvalancheTestnet -> "avalanche-2"
Blockchain.Solana, Blockchain.SolanaTestnet -> "solana"