Skip to content

Commit

Permalink
Show all chains in Coin page
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaelekol committed Jul 5, 2023
1 parent 5cabe63 commit 99b0f12
Showing 1 changed file with 15 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,21 @@ class CoinOverviewViewModel(
)
}
}
is TokenType.Unsupported -> Unit
is TokenType.Unsupported -> {
val configuredToken = ConfiguredToken(token)
items.add(
TokenVariant(
value = tokenType.reference?.shorten() ?: "",
copyValue = tokenType.reference,
imgUrl = token.blockchainType.imageUrl,
explorerUrl = null,
name = token.blockchain.name,
configuredToken = configuredToken,
canAddToWallet = false,
inWallet = false
)
)
}
}
}

Expand Down

0 comments on commit 99b0f12

Please sign in to comment.