Updated on 2026-08-14

This commit is contained in:
Tangem 2025-10-13 15:42:15 +04:00
parent 69deadf5fe
commit 23264bc7f0
29 changed files with 667 additions and 271 deletions

View file

@ -81,7 +81,10 @@ private fun getCurrencyIdBody(network: Network): CurrencyIdBody {
rawId = network.rawId,
derivationPath = path.value,
)
is Network.DerivationPath.Card,
is Network.DerivationPath.Card -> CurrencyIdBody.NetworkIdWithDerivationPath(
rawId = network.rawId,
derivationPath = path.value,
)
is Network.DerivationPath.None,
-> CurrencyIdBody.NetworkId(network.rawId)
}