Updated on 2026-08-14

This commit is contained in:
Tangem 2025-10-17 15:02:06 +04:00
parent b27e8171fb
commit 4ea8243da3
19 changed files with 375 additions and 126 deletions

View file

@ -95,6 +95,14 @@ data class Network(
data object None : DerivationPath() {
override val value: String? get() = null
}
fun copySealed(value: String): DerivationPath {
return when (this) {
is Card -> Card(value)
is Custom -> Custom(value)
None -> None
}
}
}
/**