Updated on 2026-08-14

This commit is contained in:
Tangem 2024-01-22 16:56:27 +03:00
parent e5107de19b
commit 1813cd06a9
4 changed files with 2 additions and 58 deletions

View file

@ -25,6 +25,8 @@ internal object CoinsResponseConverter : Converter<CoinsResponse, List<Token>> {
networks = token.networks.mapNotNull { network ->
val blockchain = Blockchain.fromNetworkId(network.networkId) ?: return@mapNotNull null
if (!blockchain.canHandleTokens()) return@mapNotNull null
Token.Network(
id = network.networkId,
blockchain = blockchain,