Updated on 2026-08-14

This commit is contained in:
Tangem 2024-09-09 20:08:13 +03:00
parent 57be17a027
commit 69c0d69adb
8 changed files with 83 additions and 4 deletions

View file

@ -125,6 +125,7 @@ fun Blockchain.Companion.fromNetworkId(networkId: String): Blockchain? {
"cyber/test" -> Blockchain.CyberTestnet
"sei-network" -> Blockchain.Sei
"sei-network/test" -> Blockchain.SeiTestnet
"internet-computer" -> Blockchain.InternetComputer
else -> null
}
}
@ -251,6 +252,7 @@ fun Blockchain.toNetworkId(): String {
Blockchain.CyberTestnet -> "cyber/test"
Blockchain.Sei -> "sei-network"
Blockchain.SeiTestnet -> "sei-network/test"
Blockchain.InternetComputer -> "internet-computer"
}
}
@ -334,6 +336,7 @@ fun Blockchain.toCoinId(): String {
Blockchain.Blast, Blockchain.BlastTestnet -> "blast-ethereum"
Blockchain.Cyber, Blockchain.CyberTestnet -> "cyber-ethereum"
Blockchain.Sei, Blockchain.SeiTestnet -> "sei-network"
Blockchain.InternetComputer -> "internet-computer"
}
}
@ -364,4 +367,6 @@ private val excludedBlockchains = listOf(
Blockchain.Unknown,
Blockchain.Nexa,
Blockchain.NexaTestnet,
Blockchain.Sei,
Blockchain.InternetComputer,
)