Updated on 2026-08-14

This commit is contained in:
Tangem 2025-04-24 13:43:21 +04:00
parent 4a840b127f
commit ba65a2f344
2 changed files with 2 additions and 1 deletions

View file

@ -155,6 +155,7 @@ dependencies {
implementation(projects.data.onramp)
implementation(projects.data.networks)
implementation(projects.data.quotes)
implementation(projects.data.blockaid)
/** Features */
implementation(projects.features.onboarding)

View file

@ -8,5 +8,5 @@ import com.tangem.domain.wallets.models.UserWalletId
data class WcSessionDTO(
val topic: String,
val walletId: UserWalletId,
val securityStatus: CheckDAppResult,
val securityStatus: CheckDAppResult = CheckDAppResult.FAILED_TO_VERIFY,
)