Updated on 2026-08-14

This commit is contained in:
Tangem 2026-04-02 04:30:38 -07:00
parent 6a7391fd73
commit bfeea010d0
12 changed files with 92 additions and 8 deletions

View file

@ -209,6 +209,9 @@ object PreferencesKeys {
fun getTangemPayHideOnboardingKey(userWalletId: UserWalletId) =
booleanPreferencesKey("tangem_pay_hide_onboarding_key_$userWalletId")
fun getTangemPayDeactivatedKey(userWalletId: UserWalletId) =
booleanPreferencesKey("tangem_pay_deactivated_$userWalletId")
// endregion
}

View file

@ -56,4 +56,7 @@ interface TangemPayStorage {
suspend fun getTangemPayEligibility(): Set<String>
suspend fun clearAll(userWalletId: UserWalletId, customerWalletAddress: String)
suspend fun storeIsTangemPayDeactivated(userWalletId: UserWalletId)
suspend fun isTangemPayDeactivated(userWalletId: UserWalletId): Boolean
}