Updated on 2026-08-14

This commit is contained in:
Tangem 2024-05-17 14:14:44 +02:00
parent 20452728f8
commit 9868dd2bc2
14 changed files with 184 additions and 0 deletions

1
features/staking/api/.gitignore vendored Normal file
View file

@ -0,0 +1 @@
/build

View file

@ -0,0 +1,16 @@
plugins {
alias(deps.plugins.android.library)
alias(deps.plugins.kotlin.android)
id("kotlin-parcelize")
id("configuration")
}
android {
namespace = "com.tangem.features.staking.api"
}
dependencies {
/** AndroidX */
implementation(deps.androidx.fragment.ktx)
}

View file

@ -0,0 +1,10 @@
package com.tangem.features.staking.api.featuretoggles
/**
* Staking feature toggles
*/
interface StakingFeatureToggles {
/** Availability of staking */
val isStakingEnabled: Boolean
}

View file

@ -0,0 +1,8 @@
package com.tangem.features.staking.api.navigation
import androidx.fragment.app.Fragment
interface StakingRouter {
fun getEntryFragment(): Fragment
}