Updated on 2026-08-14

This commit is contained in:
Tangem 2023-06-29 14:00:49 +03:00
parent 1e032aeb76
commit 721a136483

View file

@ -126,6 +126,8 @@ fun Blockchain.toNetworkId(): String {
Blockchain.Cronos -> "cronos"
Blockchain.Telos -> "telos"
Blockchain.TelosTestnet -> "telos/test"
Blockchain.AlephZero -> "azero"
Blockchain.AlephZeroTestnet -> "azero/test"
}
}
@ -167,6 +169,7 @@ fun Blockchain.toCoinId(): String {
Blockchain.TerraV2 -> "terra-luna-2"
Blockchain.Cronos -> "crypto-com-chain"
Blockchain.Telos, Blockchain.TelosTestnet -> "telos"
Blockchain.AlephZero, Blockchain.AlephZeroTestnet -> "azero"
}
}