Updated on 2026-08-14

This commit is contained in:
Tangem 2022-11-01 17:02:08 +05:00
parent a63f4797fe
commit 37648e0d92

View file

@ -45,13 +45,13 @@ sealed class ManageTokens(
return when (this) {
is CustomCurrency.CustomBlockchain -> mapOf(
"Token" to network.currency,
"DerivationPath" to derivationPath?.rawPath,
"Derivation Path" to derivationPath?.rawPath,
).filterNotNull()
is CustomCurrency.CustomToken -> mapOf(
"Token" to token.symbol,
"DerivationPath" to derivationPath?.rawPath,
"NetworkId" to network.toNetworkId(),
"Address" to token.contractAddress,
"Derivation Path" to derivationPath?.rawPath,
"Network Id" to network.toNetworkId(),
"Contract Address" to token.contractAddress,
).filterNotNull()
}
}