Updated on 2026-08-14

This commit is contained in:
Tangem 2026-06-11 10:05:44 +01:00
parent 52d1ed4312
commit e29792fa97
22 changed files with 1198 additions and 5 deletions

View file

@ -16,8 +16,9 @@ dependencies {
implementation(projects.features.addressBook.api)
/** Domain */
implementation(projects.domain.models)
implementation(projects.domain.account)
implementation(projects.domain.addressBook)
implementation(projects.domain.models)
/** Common */
implementation(projects.common.ui)
@ -45,6 +46,12 @@ dependencies {
/** Other */
implementation(deps.kotlin.immutable.collections)
/** Utils */
implementation(projects.libs.blockchainSdk)
implementation(tangemDeps.blockchain)
/** Tests */
testImplementation(projects.test.core)
testImplementation(projects.test.mock)
testImplementation(projects.common.test)
}