Updated on 2026-08-14

This commit is contained in:
Tangem 2022-11-16 16:28:08 +03:00
parent 37054e453d
commit b925625342
16 changed files with 223 additions and 3 deletions

View file

@ -0,0 +1,14 @@
package com.tangem.tap.proxy
import com.tangem.crypto.DerivationManager
class DerivationManagerImpl : DerivationManager {
override fun deriveMissingBlockchains(networkId: String?) {
TODO("Not yet implemented")
}
override fun hasDerivation(): Boolean {
TODO("Not yet implemented")
}
}