diff --git a/app/build.gradle.kts b/app/build.gradle.kts index ac8b4dfa53..7d7888942f 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -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) diff --git a/domain/wallet-connect/models/src/main/java/com/tangem/domain/walletconnect/model/WcSessionDTO.kt b/domain/wallet-connect/models/src/main/java/com/tangem/domain/walletconnect/model/WcSessionDTO.kt index 5698f8421b..a2dd9abd9e 100644 --- a/domain/wallet-connect/models/src/main/java/com/tangem/domain/walletconnect/model/WcSessionDTO.kt +++ b/domain/wallet-connect/models/src/main/java/com/tangem/domain/walletconnect/model/WcSessionDTO.kt @@ -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, ) \ No newline at end of file