Updated on 2026-08-14
This commit is contained in:
parent
ff985dec4e
commit
cd78832ff1
30 changed files with 89 additions and 23 deletions
|
|
@ -11,9 +11,10 @@ android {
|
|||
dependencies {
|
||||
|
||||
// region Domain modules
|
||||
implementation(project(":domain:legacy"))
|
||||
implementation(project(":domain:models"))
|
||||
implementation(project(":domain:wallets:models"))
|
||||
implementation(projects.domain.legacy)
|
||||
implementation(projects.domain.models)
|
||||
implementation(projects.domain.tokens.models)
|
||||
implementation(projects.domain.wallets.models)
|
||||
// endregion
|
||||
|
||||
// region Tangem libraries
|
||||
|
|
|
|||
|
|
@ -0,0 +1,12 @@
|
|||
package com.tangem.domain.wallets.usecase
|
||||
|
||||
import com.tangem.domain.tokens.models.Network
|
||||
import com.tangem.domain.walletmanager.WalletManagersFacade
|
||||
import com.tangem.domain.wallets.models.UserWalletId
|
||||
|
||||
class GetExploreUrlUseCase(private val walletsManagersFacade: WalletManagersFacade) {
|
||||
|
||||
suspend operator fun invoke(userWalletId: UserWalletId, networkId: Network.ID): String {
|
||||
return walletsManagersFacade.getExploreUrl(userWalletId, networkId)
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue